Fix a compiler warning
authorMatthias Clasen <mclasen@redhat.com>
Sat, 14 Dec 2013 01:05:03 +0000 (20:05 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Sat, 14 Dec 2013 01:05:03 +0000 (20:05 -0500)
Don't return without a value from a non-void function.

gtk/gtkselection.c

index e20d464b800b84b563986b2e2f1d2955f2e2d04c..caec0ddffffb05236d73955aabc47775b04d4857 100644 (file)
@@ -2295,7 +2295,7 @@ _gtk_selection_request (GtkWidget *widget,
   gulong selection_max_size;
 
   if (event->requestor == NULL)
-    return;
+    return FALSE;
 
   if (initialize)
     gtk_selection_init ();